home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / dos / window / winclip / exam103.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-03-12  |  446 b   |  14 lines

  1.   #include "window.h"
  2.   #define REVERSE CREATE_VIDEO_ATTRIBUTE(white,black)
  3.   main()
  4.   {
  5.     int i;
  6.     WindowInitializeSystem();
  7.     VideoWriteStringCCAttr("This",1,10,REVERSE);
  8.     VideoWriteStringCCAttr("is",2,10,REVERSE);
  9.     VideoWriteStringCCAttr("centered",3,10,REVERSE);
  10.     VideoWriteStringCCAttr("around",4,10,REVERSE);
  11.     VideoWriteStringCCAttr("column",5,10,REVERSE);
  12.     VideoWriteStringCCAttr("10",6,10,REVERSE);
  13.   }
  14.